home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 23
/
Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso
/
Aminet
/
text
/
edit
/
BlacksEditor.lha
/
BlacksEditor
/
Rexx
/
CountWords.bed
< prev
next >
Wrap
Text File
|
1997-12-03
|
406b
|
32 lines
/*
** $VER: CountWords.bed 1.0 (02.01.96)
**
** Count the number of words in the document
**
** Modified by Marco Negri
*/
OPTIONS RESULTS
SetDisplayLock ON
SetInputLock ON
SetBookmark 0
SetStatusBar "Counting..."
count = 0
MoveSOF
DO UNTIL RC ~= 0
MoveNextWord
count = count + 1
END
MoveBookmark 0
ClearBookmark 0
SetDisplayLock OFF
SetInputLock OFF
SetStatusBar "Counted " || count || " words"